home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / LIBIMAGE / GETOPT.H < prev    next >
C/C++ Source or Header  |  1999-09-11  |  265b  |  16 lines

  1. /* 
  2.  * getopt.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1999 SOS Software
  7.  */
  8.  
  9. #ifndef _GETOPT_H_
  10. #define    _GETOPT_H_
  11.  
  12. /* Function definitions for getopt.c */
  13. int getopt (int argc, char *argv[], char *optstring);
  14.  
  15. #endif /* _GETOPT_H_ */
  16.